title: d049. 中華民國萬歲! d049. 中華民國萬歲! zerojudge 題目 看起來非常的基本,其實用我們的基本日常思想就好了,直接把西元減1911。 code ``` y = int(input()) print(y-1911) ```
title: d049. 中華民國萬歲!
zerojudge
看起來非常的基本,其實用我們的基本日常思想就好了,直接把西元減1911。
``` y = int(input()) print(y-1911)
```